home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Development Platforms / Apple II / Essentials / APW Interfaces / AInclude / E16.TextEdit < prev    next >
Encoding:
Text File  |  1991-07-01  |  3.3 KB  |  108 lines  |  [TEXT/MPS ]

  1. ; File:  E16.TextEdit
  2. ;
  3. ;
  4. ; Copyright Apple Computer, Inc. 1986-90
  5. ; All Rights Reserved
  6. ;
  7. ;
  8. teAlreadyStarted GEQU $2201
  9. teNotStarted GEQU $2202
  10. teInvalidHandle GEQU $2203
  11. teInvalidVerb GEQU $2204
  12. teInvalidFlag GEQU $2205
  13. teInvalidPCount GEQU $2206
  14. teInvalidRect GEQU $2207
  15. teBufferOverflow GEQU $2208
  16. teInvalidLine GEQU $2209
  17. teInvalidCall GEQU $220A
  18. NullVerb GEQU $0000
  19. PStringVerb GEQU $0001
  20. CStringVerb GEQU $0002
  21. C1InputVerb GEQU $0003
  22. C1OutputVerb GEQU $0004
  23. HandleVerb GEQU $0005
  24. PointerVerb GEQU $0006
  25. NewPStringVerb GEQU $0007
  26. fEqualLineSpacing GEQU $8000
  27. fShowInvisibles GEQU $4000
  28. teInvalidDescriptor GEQU $2204
  29. teInvalidParameter GEQU $220B
  30. teInvalidTextBox2 GEQU $220C
  31. teNeedsTools GEQU $220D
  32. teEqualLineSpacing GEQU $8000
  33. teShowInvisibles GEQU $4000
  34. leftJust GEQU $0000
  35. rightJust GEQU $FFFF
  36. centerJust GEQU $0001
  37. fullJust GEQU $0002
  38. noTabs GEQU $0000
  39. stdTabs GEQU $0001 ; Tabs every tabTerminator pixels
  40. absTabs GEQU $0002 ; Tabs at absolute location specified by theTabs array
  41. fCtlInvis GEQU $0080
  42. fRecordDirty GEQU $0040
  43. teLeftTab GEQU $0000
  44. teCenterTab GEQU $0001
  45. teRightTab GEQU $0002
  46. teDecimalTab GEQU $0003
  47. fNotControl GEQU $80000000 ; TextEdit record is not a control
  48. fSingleFormat GEQU $40000000 ; Only one ruler is allowed for record
  49. fSingleStyle GEQU $20000000 ; Only one style is allowed for record
  50. fNoWordWrap GEQU $10000000 ; No word wrap is performed
  51. fNoScroll GEQU $08000000 ; The text cannot scroll
  52. fReadOnly GEQU $04000000 ; The text cannot be edited
  53. fSmartCutPaste GEQU $02000000 ; Record supports intelligent cut and paste
  54. fTabSwitch GEQU $01000000 ; Tab key switches user to next TextEdit record on the screen
  55. fDrawBounds GEQU $00800000 ; TextEdit draw a box around text
  56. fColorHilight GEQU $00400000 ; Use color table for highlighting
  57. fGrowRuler GEQU $00200000 ; Adjust right margin whenever window size changes
  58. fDisableSelection GEQU $00100000 ; User cannot select or edit text
  59. fDrawInactiveSelection GEQU $00080000 ; TextEdit displays a box around an inactive selection
  60. teCtlColorIsPtr GEQU $0000
  61. teCtlColorIsHandle GEQU $0004
  62. teCtlColorIsResource GEQU $0008
  63. teCtlStyleIsPtr GEQU $0000
  64. teCtlStyleIsHandle GEQU $0001
  65. teCtlStyleIsResource GEQU $0002
  66. teRefIsPtr GEQU $0000
  67. teRefIsHandle GEQU $0001
  68. teRefIsResource GEQU $0002
  69. teRefIsNewHandle GEQU $0003
  70. teDataIsPString GEQU $0000
  71. teDataIsCString GEQU $0001
  72. teDataIsC1Input GEQU $0002
  73. teDataIsC1Output GEQU $0003
  74. teDataIsTextBox2 GEQU $0004
  75. teDataIsTextBlock GEQU $0005
  76. teTextIsPtr GEQU $0000
  77. teTextIsHandle GEQU $0008
  78. teTextIsResource GEQU $0010
  79. teTextIsNewHandle GEQU $0018
  80. fLeaveError GEQU $0000 ; Leave the last error code intact
  81. fClearError GEQU $FFFF ; Clear the last error code
  82. teInvis GEQU $4000
  83. tePartialLines GEQU $8000
  84. teDontDraw GEQU $4000
  85. teUseFont GEQU $0020
  86. teUseSize GEQU $0010
  87. teUseForeColor GEQU $0008
  88. teUseBackColor GEQU $0004
  89. teUseUserData GEQU $0002
  90. teUseAttributes GEQU $0001
  91. teReplaceFont GEQU $0040
  92. teReplaceSize GEQU $0020
  93. teReplaceForeColor GEQU $0010
  94. teReplaceBackColor GEQU $0008
  95. teReplaceUserField GEQU $0004
  96. teReplaceAttributes GEQU $0002
  97. teSwitchAttributes GEQU $0001
  98. doEraseRect GEQU $0001
  99. doEraseBuffer GEQU $0002
  100. doRectChanged GEQU $0003
  101. doKeyStroke GEQU $0004
  102. teScrollAbsTop GEQU $0000
  103. teScrollAbsCenter GEQU $0001
  104. teScrollLineTop GEQU $0002
  105. teScrollLineCenter GEQU $0003
  106. teScrollAbsUnit GEQU $0004
  107. teScrollRelUnit GEQU $0005
  108.